final variables meaning in English
最终变量
Examples
- Using final variables
使用final变量 - If a final variable is a reference to an object , it is the reference that must stay the same , not he object
如果一个变量最终是一个对象的引用,那么这个变量代表的就是这个对象(的一个引用,或则叫对象指针) ,并不是一个真正的对象。 - While the new jmm provides initialization safety for final variables , the old jmm does not , which means that it is possible for another thread to see the default value for a final field , rather than the value placed there by the object s constructor
新的jmm为final型变量提供初始化安全,而老的jmm不提供,这意味着另一个线程看到的可能是final字段的默认值,而不是对象的构造方法提供的值。